/**
 * You can edit, run, and share this code. 
 * play.kotlinlang.org 
 */ 

fun main() {
    
    val idade = 71
    
    if (idade >= 18 || idade == 70){
        println("Pode dirigir")
    } 
    	else {
            println("Não pode dirigir")
        }
 

}
